
truncate table activity_details;

INSERT INTO activity_details (Name,`Type`,UniqueId,MappedType) VALUES
	 ('Active',1,1,0),
	 ('Sleep',1,2,0),
	 ('Idle',1,3,0),
	 ('Logged In',1,4,0),
	 ('Logged Out',1,5,0),
	 ('Applications',2,6,1),
	 ('Calls',2,7,1),
	 ('Sessions',2,8,1),
	 ('All Applications',3,9,6),
	 ('Application(Top 10)',3,10,6),
	 ('Window PC',4,11,1),
	 ('All Calls',5,12,7),
	 ('Calls(Top 10)',5,13,7),
	 ('All Sessions',6,14,8),
	 ('Active',6,15,8),
	 ('Sleep',6,16,8),
	 ('Idle',6,17,8),
	 ('Log In',6,18,8),
	 ('Log Out',6,19,8),
	 ('Super Admin',7,20,9),
	 ('Admin',7,21,9),
	 ('Active',8,22,10),
	 ('Deactive',8,23,10),
	 ('Deleted',8,24,10),
	 ('Users',7,25,9);
